home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / components / calStorageCalendarModule.js < prev    next >
Text File  |  2007-11-20  |  5KB  |  137 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Oracle Corporation code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  *  Oracle Corporation
  18.  * Portions created by the Initial Developer are Copyright (C) 2005, 2006
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Vladimir Vukicevic <vladimir.vukicevic@oracle.com>
  23.  *   Joey Minta <jminta@gmail.com>
  24.  *   Dan Mosedale <dan.mosedale@oracle.com>
  25.  *   Thomas Benisch <thomas.benisch@sun.com>
  26.  *   Matthew Willis <lilmatt@mozilla.com>
  27.  *   Philipp Kewisch <mozilla@kewis.ch>
  28.  *
  29.  * Alternatively, the contents of this file may be used under the terms of
  30.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  31.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  32.  * in which case the provisions of the GPL or the LGPL are applicable instead
  33.  * of those above. If you wish to allow use of your version of this file only
  34.  * under the terms of either the GPL or the LGPL, and not to allow others to
  35.  * use your version of this file under the terms of the MPL, indicate your
  36.  * decision by deleting the provisions above and replace them with the notice
  37.  * and other provisions required by the GPL or the LGPL. If you do not delete
  38.  * the provisions above, a recipient may use your version of this file under
  39.  * the terms of any one of the MPL, the GPL or the LGPL.
  40.  *
  41.  * ***** END LICENSE BLOCK ***** */
  42.  
  43. // nsIFactory
  44. const calStorageCalendarFactory = {
  45.     QueryInterface: function (aIID) {
  46.         if (!aIID.equals(Components.interfaces.nsISupports) &&
  47.             !aIID.equals(Components.interfaces.nsIFactory)) {
  48.             throw Components.results.NS_ERROR_NO_INTERFACE;
  49.         }
  50.         return this;
  51.     },
  52.  
  53.     createInstance: function (outer, iid) {
  54.         if (outer != null)
  55.             throw Components.results.NS_ERROR_NO_AGGREGATION;
  56.         return (new calStorageCalendar()).QueryInterface(iid);
  57.     }
  58. };
  59.  
  60. /****
  61.  **** module registration
  62.  ****/
  63.  
  64. var calStorageCalendarModule = {
  65.     mCID: Components.ID("{b3eaa1c4-5dfe-4c0a-b62a-b3a514218461}"),
  66.     mContractID: "@mozilla.org/calendar/calendar;1?type=storage",
  67.  
  68.     mUtilsLoaded: false,
  69.     loadUtils: function storageLoadUtils() {
  70.         if (this.mUtilsLoaded)
  71.             return;
  72.  
  73.         const jssslContractID = "@mozilla.org/moz/jssubscript-loader;1";
  74.         const jssslIID = Components.interfaces.mozIJSSubScriptLoader;
  75.  
  76.         const iosvcContractID = "@mozilla.org/network/io-service;1";
  77.         const iosvcIID = Components.interfaces.nsIIOService;
  78.  
  79.         var loader = Components.classes[jssslContractID].getService(jssslIID);
  80.         var iosvc = Components.classes[iosvcContractID].getService(iosvcIID);
  81.  
  82.         // Note that unintuitively, __LOCATION__.parent == .
  83.         // We expect to find utils in ./../js
  84.         var appdir = __LOCATION__.parent.parent;
  85.         appdir.append("js");
  86.         const scripts = ["calUtils.js", "calProviderBase.js",
  87.                          "calStorageCalendar.js" ];
  88.  
  89.         for each (var scriptName in scripts) {
  90.             var f = appdir.clone();
  91.             f.append(scriptName);
  92.  
  93.             try {
  94.                 var fileurl = iosvc.newFileURI(f);
  95.                 loader.loadSubScript(fileurl.spec, null);
  96.             } catch (e) {
  97.                 Components.utils.reportError("Error while loading " + fileurl.spec);
  98.                 throw e;
  99.             }
  100.         }
  101.  
  102.         initCalStorageCalendarComponent();
  103.         this.mUtilsLoaded = true;
  104.     },
  105.  
  106.     registerSelf: function (compMgr, fileSpec, location, type) {
  107.         compMgr = compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  108.         compMgr.registerFactoryLocation(this.mCID,
  109.                                         "Calendar mozStorage/SQL back-end",
  110.                                         this.mContractID,
  111.                                         fileSpec,
  112.                                         location,
  113.                                         type);
  114.     },
  115.  
  116.     getClassObject: function (compMgr, cid, iid) {
  117.         if (!cid.equals(this.mCID)) {
  118.             throw Components.results.NS_ERROR_NO_INTERFACE;
  119.         }
  120.  
  121.         if (!iid.equals(Components.interfaces.nsIFactory)) {
  122.             throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  123.         }
  124.  
  125.         this.loadUtils();
  126.         return calStorageCalendarFactory;
  127.     },
  128.  
  129.     canUnload: function(compMgr) {
  130.         return true;
  131.     }
  132. };
  133.  
  134. function NSGetModule(compMgr, fileSpec) {
  135.     return calStorageCalendarModule;
  136. }
  137.